home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 043a / edm.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1993-05-20  |  3KB  |  57 lines

  1. echo off
  2. cls
  3. echo ╔═══════════════════════════════════════════════════════════════════════╗
  4. echo ║   INSTALL.BAT will install Electronic Data Minder Version 1.8 on your ║
  5. echo ║   Hard Drive.  The name of your hard disk can be specified as a       ║
  6. echo ║   parameter, for example:                                             ║
  7. echo ║                                                                       ║
  8. echo ║               INSTALL C:                                              ║
  9. echo ║                                                                       ║
  10. echo ║   When no drive is specified, drive 'C' will be assumed.              ║
  11. echo ║                                                                       ║
  12. echo ║   Electronic Data Minder will be installed in directory \EDM created  ║
  13. echo ║   on the specified drive.                                             ║
  14. echo ║                                                                       ║
  15. echo ║   Press Ctrl-C to cancel installation, any other key to proceed.      ║
  16. echo ╚═══════════════════════════════════════════════════════════════════════╝
  17. pause
  18. set DRIVE=%1
  19. if not "%1"=="" goto :copy
  20. set DRIVE=c:
  21. :copy
  22. md %DRIVE%\EDM
  23. copy EDM.DAT %DRIVE%\EDM
  24. copy EDM.DOC %DRIVE%\EDM
  25. copy EDM.EXE %DRIVE%\EDM
  26. copy EDM1.DAT %DRIVE%\EDM
  27. copy EDMMAIN.EXE %DRIVE%\EDM
  28. copy INSTALL.BAT %DRIVE%\EDM
  29. copy PACKING.LST %DRIVE%\EDM
  30. copy RUNME.BAT %DRIVE%\EDM
  31. copy WHATS.NEW %DRIVE%\EDM
  32. copy README.EXE %DRIVE%\EDM
  33. copy EDMDOC.DAT %DRIVE%\EDM
  34. set DRIVE=
  35. cls
  36. %DRIVE%
  37. echo off
  38. echo ╔═══════════════════════════════════════════════════════════════════════╗
  39. echo ║   Installation of Electronic Data Minder is complete.  To run the     ║
  40. echo ║   program, enter EDM at the DOS prompt.                               ║
  41. echo ║                                                                       ║
  42. echo ║   We would like to thank you for choosing a Crystal Systems           ║
  43. echo ║   International, Inc. computer product.  Once you've tried us, the    ║
  44. echo ║   choice becomes CRYSTAL clear!                                       ║
  45. echo ║                                                                       ║
  46. echo ║   If you have installed or used a previous version of Electronic Data ║
  47. echo ║   Minder, then you should read the contents of the file WHATS.NEW to  ║
  48. echo ║   familiarize yourself with the updates and corrections to this pro-  ║
  49. echo ║   gram.  You should also read the file EDM.DOC for further details on ║
  50. echo ║   these changes and updates.                                          ║
  51. echo ╚═══════════════════════════════════════════════════════════════════════╝
  52. pause
  53. cls
  54. cd %DRIVE%\EDM
  55. README
  56. cls
  57.